Assembly: C1.Silverlight.LiveLinq (in C1.Silverlight.LiveLinq.dll)
Syntax
C# |
---|
public static View<T> AsUpdatable<T>( this View<T> view ) |
Visual Basic |
---|
<ExtensionAttribute> _ Public Shared Function AsUpdatable(Of T) ( _ view As View(Of T) _ ) As View(Of T) |
Parameters
- view
- Type: C1.LiveLinq.LiveViews..::..View<(Of <(<'T>)>)>
The view to specify as updatable.
Type Parameters
- T
- The type of the elements in the view.
Return Value
The same view.Remarks
This method is used with Join operation to specify which of the two parts of the join you want to be updatable.
Properties exposed by a view can be updatable or read-only. Updatable properties of a view can be modified directly in the view. Read-only properties of a view cannot be modified directly in the view, but they still reflect up-to-date values of the source, so the difference is often not critical, you can always modify corresponding property in the source, that will automatically change the property in the view.
Only one of the two arguments of a Join can be updatable, the one you qualified with AsUpdatable().
In absence of this qualification, both parts of the join are read-only. For example, in
from c in customers.AsLive()
join o in orders.AsLive().AsUpdatable() on o.CustomerID equals c.CustomerID
select new { c.CustomerName, o.OrderDate, o.OrderAmount }